home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’97 / Warrior’s Progress / source code / Source / Libraries / Trees / TreeLoop.h < prev    next >
Encoding:
Text File  |  1997-06-28  |  253 b   |  19 lines  |  [TEXT/CWIE]

  1. // TreeLoop.h
  2.  
  3. #ifndef TreeLoop_h
  4. #define TreeLoop_h
  5.  
  6. #ifndef Tree_h
  7. #include "Tree.h"
  8. #endif
  9. #ifndef TreeNode_h
  10. #include "TreeNode.h"
  11. #endif
  12. #ifndef SequenceLoop_h
  13. #include "SequenceLoop.h"
  14. #endif
  15.  
  16. typedef SequenceLoop<Tree,TreeNode> TreeLoop;
  17.  
  18. #endif
  19.